home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / amiga / uae-0.7.0b2 / src / od-amiga / ami-gui.c < prev    next >
C/C++ Source or Header  |  1998-01-20  |  1KB  |  68 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * GUI interface (to be done).
  5.   * Calls AREXX interface.
  6.   *
  7.   * Copyright 1996 Bernd Schmidt, Samuel Devulder
  8.   */
  9.  
  10. #include "sysconfig.h"
  11. #include "sysdeps.h"
  12.  
  13. #include "config.h"
  14. #include "options.h"
  15. #include "gui.h"
  16.  
  17. /****************************************************************************/
  18.  
  19. extern void rexx_led(int led, int on);          /* ami-rexx.c */
  20. extern void rexx_filename(int num, const char *name);
  21. extern void rexx_handle_events(void);
  22. extern void main_window_led(int led, int on);   /* ami-win.c */
  23.  
  24. /****************************************************************************/
  25.  
  26. int gui_init(void)
  27. {
  28.     return 0;
  29. }
  30.  
  31. /****************************************************************************/
  32.  
  33. void gui_exit(void)
  34. {
  35. }
  36.  
  37. /****************************************************************************/
  38.  
  39. int gui_update(void)
  40. {
  41.  return 0;
  42. }
  43.  
  44. /****************************************************************************/
  45.  
  46. void gui_led(int led, int on)
  47. {
  48.     main_window_led(led, on);
  49.     rexx_led(led, on);
  50. }
  51.  
  52. /****************************************************************************/
  53.  
  54. void gui_filename(int num, const char *name)
  55. {
  56.     rexx_filename(num, name);
  57. }
  58.  
  59. /****************************************************************************/
  60.  
  61. void gui_handle_events(void)
  62. {
  63.     rexx_handle_events();
  64. }
  65.  
  66. /****************************************************************************/
  67.  
  68.